Guide to Make Your Own Operating System: Bootstrap Yourself To Write An Operating System From Scratch by Marshall Sam
Author:Marshall, Sam [Marshall, Sam]
Language: eng
Format: epub
Published: 2020-10-09T16:00:00+00:00
And the C structure:
struct gdtdesc {
u16 lim0_15;
u16 base0_15;
u8 base16_23;
u8 acces;
u8 lim16_19 :4 ;
u8 other :4 ;
u8 base24_31;
} __attribute__ ((packed));
How to define our GDT table?
We need now to define our GDT in memory and finally load it using the GDTR registry.
We are going to store our GDT at the address:
# define GDTBASE 0x00000800
The function init_gdt_desc in x86.cc initialize a gdt segment descriptor.
void init_gdt_desc(u32 base, u32 limite, u8 acces, u8 other, struct gdtdesc * desc)
{
desc -> lim0_15 = (limite & 0xffff );
desc -> base0_15 = (base & 0xffff );
desc -> base16_23 = (base & 0xff0000 ) >> 16 ;
desc -> acces = acces;
desc -> lim16_19 = (limite & 0xf0000 ) >> 16 ;
desc -> other = (other & 0xf );
desc -> base24_31 = (base & 0xff000000 ) >> 24 ;
return ;
}
And the function init_gdt initialize the GDT, some parts of the below function will be explained later and are used for multitasking.
void init_gdt( void )
{
default_tss.debug_flag = 0x00 ;
default_tss.io_map = 0x00 ;
default_tss.esp0 = 0x1FFF0 ;
default_tss.ss0 = 0x18 ;
â
/* initialize gdt segments */
init_gdt_desc( 0x0 , 0x0 , 0x0 , 0x0 , & kgdt[ 0 ]);
init_gdt_desc( 0x0 , 0xFFFFF , 0x9B , 0x0D , & kgdt[ 1 ]); /* code */
init_gdt_desc( 0x0 , 0xFFFFF , 0x93 , 0x0D , & kgdt[ 2 ]); /* data */
init_gdt_desc( 0x0 , 0x0 , 0x97 , 0x0D , & kgdt[ 3 ]); /* stack */
â
init_gdt_desc( 0x0 , 0xFFFFF , 0xFF , 0x0D , & kgdt[ 4 ]); /* ucode */
init_gdt_desc( 0x0 , 0xFFFFF , 0xF3 , 0x0D , & kgdt[ 5 ]); /* udata */
init_gdt_desc( 0x0 , 0x0 , 0xF7 , 0x0D , & kgdt[ 6 ]); /* ustack */
â
init_gdt_desc((u32) & default_tss, 0x67 , 0xE9 , 0x00 , & kgdt[ 7 ]); /* descripteur de tss */
â
/* initialize the gdtr structure */
kgdtr.limite = GDTSIZE * 8 ;
kgdtr.base = GDTBASE;
â
/* copy the gdtr to its memory area */
memcpy(( char * ) kgdtr.base, ( char * ) kgdt, kgdtr.limite);
â
/* load the gdtr registry */
asm ( "lgdtl (kgdtr)" );
â
/* initiliaz the segments */
asm ( " movw $0x10, %ax
movw %ax, %ds
movw %ax, %es
movw %ax, %fs
movw %ax, %gs
ljmp $0x08, $next
next:
" );
}
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Mikado Method by Ola Ellnestam Daniel Brolund(20604)
Hello! Python by Anthony Briggs(19899)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(18208)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(17575)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(17422)
Kotlin in Action by Dmitry Jemerov(17185)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(16236)
Grails in Action by Glen Smith Peter Ledbrook(15390)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(13266)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(10393)
Windows APT Warfare by Sheng-Hao Ma(7833)
Layered Design for Ruby on Rails Applications by Vladimir Dementyev(7549)
Blueprints Visual Scripting for Unreal Engine 5 - Third Edition by Marcos Romero & Brenden Sewell(7448)
Solidity Programming Essentials by Ritesh Modi(4566)
Functional Programming in JavaScript by Mantyla Dan(4438)
Hands-On Full-Stack Web Development with GraphQL and React by Sebastian Grebe(4430)
WordPress Plugin Development Cookbook by Yannick Lefebvre(4384)
Unity 3D Game Development by Anthony Davis & Travis Baptiste & Russell Craig & Ryan Stunkel(4270)
The Ultimate iOS Interview Playbook by Avi Tsadok(4252)